home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 4 / QRZ Ham Radio Callsign Database - Volume 4.iso / files / dsp / 56ktools / dspkgctr.z / dspkgctr / gcc / expmed.c < prev    next >
C/C++ Source or Header  |  1992-06-08  |  54KB  |  1,682 lines

  1. /* Medium-level subroutines: convert bit-field store and extract
  2.    and shifts, multiplies and divides to rtl instructions.
  3.    Copyright (C) 1987, 1988, 1989 Free Software Foundation, Inc.
  4.  
  5.    $Id: expmed.c,v 1.6 91/10/22 15:19:23 jeff Exp $
  6.  
  7. This file is part of GNU CC.
  8.  
  9. GNU CC is free software; you can redistribute it and/or modify
  10. it under the terms of the GNU General Public License as published by
  11. the Free Software Foundation; either version 1, or (at your option)
  12. any later version.
  13.  
  14. GNU CC is distributed in the hope that it will be useful,
  15. but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17. GNU General Public License for more details.
  18.  
  19. You should have received a copy of the GNU General Public License
  20. along with GNU CC; see the file COPYING.  If not, write to
  21. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  22.  
  23.  
  24. #include "config.h"
  25. #include "rtl.h"
  26. #include "tree.h"
  27. #include "flags.h"
  28. #if ! defined( _INTELC32_ )
  29. #include "insn-flags.h"
  30. #include "insn-codes.h"
  31. #include "insn-config.h"
  32. #else
  33. #include "iflags.h"
  34. #include "icodes.h"
  35. #include "iconfig.h"
  36. #endif
  37. #include "expr.h"
  38. #include "recog.h"
  39.  
  40. static rtx extract_split_bit_field ();
  41. static rtx extract_fixed_bit_field ();
  42. static void store_split_bit_field ();
  43. static void store_fixed_bit_field ();
  44.  
  45. /* Return an rtx representing minus the value of X.
  46.    MODE is the intended mode of the result,
  47.    useful if X is a CONST_INT.  */
  48.  
  49. rtx
  50. negate_rtx (mode, x)
  51.      enum machine_mode mode;
  52.      rtx x;
  53. {
  54.   if (GET_CODE (x) == CONST_INT)
  55.     {
  56.       int val = - INTVAL (x);
  57.       if (GET_MODE_BITSIZE (mode) < HOST_BITS_PER_INT)
  58.     {
  59.       /* Sign extend the value from the bits that are significant.  */
  60.       if (val & (1 << (GET_MODE_BITSIZE (mode) - 1)))
  61.         val |= (-1) << GET_MODE_BITSIZE (mode);
  62.       else
  63.         val &= (1 << GET_MODE_BITSIZE (mode)) - 1;
  64.     }
  65.       return gen_rtx (CONST_INT, VOIDmode, val);
  66.     }
  67.   else
  68.     return expand_unop (GET_MODE (x), neg_optab, x, 0, 0);
  69. }
  70.  
  71. /* Generate code to store value from rtx VALUE
  72.    into a bit-field within structure STR_RTX
  73.    containing BITSIZE bits starting at bit BITNUM.
  74.    FIELDMODE is the machine-mode of the FIELD_DECL node for this field.
  75.    ALIGN is the alignment that STR_RTX is known to have, measured in bytes.  */
  76.  
  77. rtx
  78. store_bit_field (str_rtx, bitsize, bitnum, fieldmode, value, align)
  79.      rtx str_rtx;
  80.      register int bitsize;
  81.      int bitnum;
  82.      enum machine_mode fieldmode;
  83.      rtx value;
  84.      int align;
  85. {
  86.   int unit = (GET_CODE (str_rtx) == MEM) ? BITS_PER_UNIT : BITS_PER_WORD;
  87.   register int offset = bitnum / unit;
  88.   register int bitpos = bitnum % unit;
  89.   register rtx op0 = str_rtx;
  90.   rtx value1;
  91.  
  92.   while (GET_CODE (op0) == SUBREG)
  93.     {
  94.       offset += SUBREG_WORD (op0);
  95.       op0 = SUBREG_REG (op0);
  96.     }
  97.  
  98.   value = protect_from_queue (value, 0);
  99.  
  100.   if (flag_force_mem)
  101.     value = force_not_mem (value);
  102.  
  103.   if (GET_MODE_SIZE (fieldmode) >= UNITS_PER_WORD)
  104.     {
  105.       /* Storing in a full-word or multi-word field in a register
  106.      can be done with just SUBREG.  */
  107.       if (GET_MODE (op0) != fieldmode)
  108.     op0 = gen_rtx (SUBREG, fieldmode, op0, offset);
  109.       emit_move_insn (op0, value);
  110.       return value;
  111.     }
  112.  
  113. #ifdef BYTES_BIG_ENDIAN
  114.   /* If OP0 is a register, BITPOS must count within a word.
  115.      But as we have it, it counts within whatever size OP0 now has.
  116.      On a bigendian machine, these are not the same, so convert.  */
  117.   if (GET_CODE (op0) != MEM && unit > GET_MODE_BITSIZE (GET_MODE (op0)))
  118.     bitpos += unit - GET_MODE_BITSIZE (GET_MODE (op0));
  119. #endif
  120.  
  121.   /* Storing an lsb-aligned field in a register
  122.      can be done with a movestrict instruction.  */
  123.  
  124.   if (GET_CODE (op0) != MEM
  125. #ifdef BYTES_BIG_ENDIAN
  126.       && bitpos + bitsize == unit
  127. #else
  128.       && bitpos == 0
  129. #endif
  130.       && (GET_MODE (op0) == fieldmode
  131.       || (movstrict_optab->handlers[(int) fieldmode].insn_code
  132.           != CODE_FOR_nothing)))
  133.     {
  134.       /* Get appropriate low part of the value being stored.  */
  135.       if (GET_CODE (value) == CONST_INT || GET_CODE (value) == REG)
  136.     value = gen_lowpart (fieldmode, value);
  137.       else if (!(GET_CODE (value) == SYMBOL_REF
  138.          || GET_CODE (value) == LABEL_REF
  139.          || GET_CODE (value) == CONST))
  140.     value = convert_to_mode (fieldmode, value, 0);
  141.  
  142.       if (GET_MODE (op0) == fieldmode)
  143.     emit_move_insn (op0, value);
  144.       else
  145.     emit_insn (GEN_FCN (movstrict_optab->handlers[(int) fieldmode].insn_code)
  146.            (gen_rtx (SUBREG, fieldmode, op0, offset), value));
  147.  
  148.       return value;
  149.     }
  150.  
  151.   /* From here on we can assume that the field to be stored in is an integer,
  152.      since it is shorter than a word.  */
  153.  
  154.   /* OFFSET is the number of words or bytes (UNIT says which)
  155.      from STR_RTX to the first word or byte containing part of the field.  */
  156.  
  157.   if (GET_CODE (op0) == REG)
  158.     {
  159.       if (offset != 0
  160.       || GET_MODE_SIZE (GET_MODE (op0)) > GET_MODE_SIZE (SImode))
  161.     op0 = gen_rtx (SUBREG, SImode, op0, offset);
  162.       offset = 0;
  163.     }
  164.   else
  165.     {
  166.       op0 = protect_from_queue (op0, 1);
  167.     }
  168.  
  169.   /* Now OFFSET is nonzero only if OP0 is memory
  170.      and is therefore always measured in bytes.  */
  171.  
  172. #ifdef HAVE_insv
  173.   if (HAVE_insv
  174.       && !(bitsize == 1 && GET_CODE (value) == CONST_INT))
  175.     {
  176.       int xbitpos = bitpos;
  177.       rtx xop0 = op0;
  178.       rtx last = get_last_insn ();
  179.       rtx pat;
  180.  
  181.       /* If this machine's insv can only insert into a register,
  182.      copy OP0 into a register and save it back later.  */
  183.       if (GET_CODE (op0) == MEM
  184.       && ! (*insn_operand_predicate[(int) CODE_FOR_insv][0]) (op0, VOIDmode))
  185.     {
  186.       rtx tempreg;
  187.       enum machine_mode trymode, bestmode = VOIDmode, insn_mode;
  188.       int maxsize = GET_MODE_SIZE (insn_operand_mode[(int) CODE_FOR_insv][0]);
  189.  
  190.       /* Find biggest machine mode we can safely use
  191.          to fetch from this structure.
  192.          But don't use a bigger mode than the insn wants.  */
  193.       for (trymode = QImode;
  194.            trymode && GET_MODE_SIZE (trymode) <= maxsize;
  195.            trymode = GET_MODE_WIDER_MODE (trymode))
  196.         if (GET_MODE_SIZE (trymode) <= align)
  197.           bestmode = trymode;
  198.       if (! bestmode)
  199.         abort ();
  200.       /* Adjust address to point to the containing unit of that mode.  */
  201.       unit = GET_MODE_BITSIZE (bestmode);
  202.       /* Compute offset as multiple of this unit, counting in bytes.  */
  203.       offset = (bitnum / unit) * GET_MODE_SIZE (bestmode);
  204.       bitpos = bitnum % unit;
  205.       op0 = change_address (op0, bestmode, 
  206.                 plus_constant (XEXP (op0, 0), offset));
  207.  
  208.       /* Fetch that unit, store the bitfield in it, then store the unit.  */
  209.       tempreg = copy_to_reg (op0);
  210.       /* To actually store in TEMPREG,
  211.          look at it in the mode this insn calls for.
  212.          (Probably SImode.)  */
  213.       insn_mode = insn_operand_mode[(int) CODE_FOR_insv][0];
  214. #ifdef BITS_BIG_ENDIAN
  215.       if (GET_MODE_BITSIZE (insn_mode) > unit)
  216.         bitpos += GET_MODE_BITSIZE (insn_mode) - unit;
  217. #endif
  218.       store_bit_field (gen_rtx (SUBREG, insn_mode, tempreg, 0),
  219.                bitsize, bitpos, fieldmode, value, align);
  220.       emit_move_insn (op0, tempreg);
  221.       return value;
  222.     }
  223.  
  224.       /* Add OFFSET into OP0's address.  */
  225.       if (GET_CODE (xop0) == MEM)
  226.     xop0 = change_address (xop0, QImode,
  227.                    plus_constant (XEXP (xop0, 0), offset));
  228.  
  229.       /* If xop0 is a register, we need it in SImode
  230.      to make it acceptable to the format of insv.  */
  231.       if (GET_CODE (xop0) == SUBREG)
  232.     PUT_MODE (xop0, SImode);
  233.       if (GET_CODE (xop0) == REG && GET_MODE (xop0) != SImode)
  234.     xop0 = gen_rtx (SUBREG, SImode, xop0, 0);
  235.  
  236.       /* Convert VALUE to SImode (which insv insn wants) in VALUE1.  */
  237.       value1 = value;
  238.       if (GET_MODE (value) != SImode)
  239.     {
  240.       if (GET_MODE_BITSIZE (GET_MODE (value)) >= bitsize)
  241.         {
  242.           /* Optimization: Don't bother really extending VALUE
  243.          if it has all the bits we will actually use.  */
  244.  
  245.           /* Avoid making subreg of a subreg, or of a mem.  */
  246.           if (GET_CODE (value1) != REG)
  247.         value1 = copy_to_reg (value1);
  248.           value1 = gen_rtx (SUBREG, SImode, value1, 0);
  249.         }
  250.       else if (!CONSTANT_P (value))
  251.         /* Parse phase is supposed to make VALUE's data type
  252.            match that of the component reference, which is a type
  253.            at least as wide as the field; so VALUE should have
  254.            a mode that corresponds to that type.  */
  255.         abort ();
  256.     }
  257.  
  258.       /* If this machine's insv insists on a register,
  259.      get VALUE1 into a register.  */
  260.       if (! (*insn_operand_predicate[(int) CODE_FOR_insv][3]) (value1, SImode))
  261.     value1 = force_reg (SImode, value1);
  262.  
  263.       /* On big-endian machines, we count bits from the most significant.
  264.      If the bit field insn does not, we must invert.  */
  265.  
  266. #if defined (BITS_BIG_ENDIAN) != defined (BYTES_BIG_ENDIAN)
  267.       xbitpos = unit - 1 - xbitpos;
  268. #endif
  269.  
  270.       pat = gen_insv (xop0,
  271.               gen_rtx (CONST_INT, VOIDmode, bitsize),
  272.               gen_rtx (CONST_INT, VOIDmode, xbitpos),
  273.               value1);
  274.       if (pat)
  275.     emit_insn (pat);
  276.       else
  277.         {
  278.       delete_insns_since (last);
  279.       store_fixed_bit_field (op0, offset, bitsize, bitpos, value, align);
  280.     }
  281.     }
  282.   else
  283. #endif
  284.     /* Insv is not available; store using shifts and boolean ops.  */
  285.     store_fixed_bit_field (op0, offset, bitsize, bitpos, value, align);
  286.   return value;
  287. }
  288.  
  289. /* Use shifts and boolean operations to store VALUE
  290.    into a bit field of width BITSIZE
  291.    in a memory location specified by OP0 except offset by OFFSET bytes.
  292.      (OFFSET must be 0 if OP0 is a register.)
  293.    The field starts at position BITPOS within the byte.
  294.     (If OP0 is a register, it may be SImode or a narrower mode,
  295.      but BITPOS still counts within a full word,
  296.      which is significant on bigendian machines.)
  297.    STRUCT_ALIGN is the alignment the structure is known to have (in bytes).
  298.  
  299.    Note that protect_from_queue has already been done on OP0 and VALUE.  */
  300.  
  301. static void
  302. store_fixed_bit_field (op0, offset, bitsize, bitpos, value, struct_align)
  303.      register rtx op0;
  304.      register int offset, bitsize, bitpos;
  305.      register rtx value;
  306.      int struct_align;
  307. {
  308.   register enum machine_mode mode;
  309.   int total_bits = BITS_PER_WORD;
  310.   rtx subtarget;
  311.   int all_zero = 0;
  312.   int all_one = 0;
  313.  
  314.   /* Add OFFSET to OP0's address (if it is in memory)
  315.      and if a single byte contains the whole bit field
  316.      change OP0 to a byte.  */
  317.  
  318.   /* There is a case not handled here:
  319.      a structure with a known alignment of just a halfword
  320.      and a field split across two aligned halfwords within the structure.
  321.      Or likewise a structure with a known alignment of just a byte
  322.      and a field split across two bytes.
  323.      Such cases are not supposed to be able to occur.  */
  324.  
  325.   if (GET_CODE (op0) == REG || GET_CODE (op0) == SUBREG)
  326.     {
  327.       if (offset != 0)
  328.     abort ();
  329.       /* Special treatment for a bit field split across two registers.  */
  330.       if (bitsize + bitpos > BITS_PER_WORD)
  331.     {
  332.       store_split_bit_field (op0, bitsize, bitpos, value, BITS_PER_WORD);
  333.       return;
  334.     }
  335.     }
  336.   else if (bitsize + bitpos <= BITS_PER_UNIT
  337.        && (! SLOW_BYTE_ACCESS
  338.            || (struct_align == 1
  339.            && BIGGEST_ALIGNMENT > 1)))
  340.     {
  341.       /* It fits in one byte, and either bytes are fast
  342.      or the alignment won't let us use anything bigger.  */
  343.       total_bits = BITS_PER_UNIT;
  344.       op0 = change_address (op0, QImode, 
  345.                 plus_constant (XEXP (op0, 0), offset));
  346.     }
  347.   else if ((bitsize + bitpos + (offset % GET_MODE_SIZE (HImode)) * BITS_PER_UNIT
  348.         <= GET_MODE_BITSIZE (HImode))
  349.        /* If halfwords are fast, use them whenever valid.  */
  350.        && (! SLOW_BYTE_ACCESS
  351.            /* Use halfwords if larger is invalid due to alignment.  */
  352.            || (struct_align == GET_MODE_SIZE (HImode)
  353.            && BIGGEST_ALIGNMENT > GET_MODE_SIZE (HImode))))
  354.     {
  355.       /* It fits in an aligned halfword within the structure,
  356.      and either halfwords are fast
  357.      or the alignment won't let us use anything bigger.  */
  358.       total_bits = GET_MODE_BITSIZE (HImode);
  359.  
  360.       /* Get ref to halfword containing the field.  */
  361.       bitpos += (offset % (total_bits / BITS_PER_UNIT)) * BITS_PER_UNIT;
  362.       offset -= (offset % (total_bits / BITS_PER_UNIT));
  363.       op0 = change_address (op0, HImode, 
  364.                 plus_constant (XEXP (op0, 0), offset));
  365.     }
  366.   else
  367.     {
  368.       /* Get ref to an aligned word containing the field.  */
  369.       /* Adjust BITPOS to be position within a word,
  370.      and OFFSET to be the offset of that word.
  371.      Then alter OP0 to refer to that word.  */
  372.       bitpos += (offset % (BITS_PER_WORD / BITS_PER_UNIT)) * BITS_PER_UNIT;
  373.       offset -= (offset % (BITS_PER_WORD / BITS_PER_UNIT));
  374.       op0 = change_address (op0, SImode,
  375.                 plus_constant (XEXP (op0, 0), offset));
  376.  
  377.       /* Special treatment for a bit field split across two aligned words.  */
  378.       if (bitsize + bitpos > BITS_PER_WORD)
  379.     {
  380.       store_split_bit_field (op0, bitsize, bitpos, value, struct_align);
  381.       return;
  382.     }
  383.     }
  384.  
  385.   mode = GET_MODE (op0);
  386.  
  387.   /* Now MODE is either QImode, HImode or SImode for a MEM as OP0,
  388.      or is SImode for a REG as OP0.  TOTAL_BITS corresponds.
  389.      The bit field is contained entirely within OP0.
  390.      BITPOS is the starting bit number within OP0.
  391.      (OP0's mode may actually be narrower than MODE.)  */
  392.  
  393. #ifdef BYTES_BIG_ENDIAN
  394.   /* BITPOS is the distance between our msb
  395.      and that of the containing datum.
  396.      Convert it to the distance from the lsb.  */
  397.  
  398.   bitpos = total_bits - bitsize - bitpos;
  399. #endif
  400.   /* Now BITPOS is always the distance between our lsb
  401.      and that of OP0.  */
  402.  
  403.   /* Shift VALUE left by BITPOS bits.  If VALUE is not constant,
  404.      we must first convert its mode to MODE.  */
  405.  
  406.   if (GET_CODE (value) == CONST_INT)
  407.     {
  408.       register int v = INTVAL (value);
  409.  
  410.       if (bitsize < HOST_BITS_PER_INT)
  411.     v &= (1 << bitsize) - 1;
  412.  
  413.       if (v == 0)
  414.     all_zero = 1;
  415.       else if (bitsize < HOST_BITS_PER_INT && v == (1 << bitsize) - 1)
  416.     all_one = 1;
  417.  
  418.       value = gen_rtx (CONST_INT, VOIDmode, v << bitpos);
  419.     }
  420.   else
  421.     {
  422.       int must_and = (GET_MODE_BITSIZE (GET_MODE (value)) != bitsize);
  423.  
  424.       if (GET_MODE (value) != mode)
  425.     {
  426.       if ((GET_CODE (value) == REG || GET_CODE (value) == SUBREG)
  427.           && GET_MODE_SIZE (mode) < GET_MODE_SIZE (GET_MODE (value)))
  428.         value = gen_lowpart (mode, value);
  429.       else
  430.         value = convert_to_mode (mode, value, 1);
  431.     }
  432.  
  433.       if (must_and && bitsize < HOST_BITS_PER_INT)
  434.     value = expand_bit_and (mode, value,
  435.                 gen_rtx (CONST_INT, VOIDmode,
  436.                      (1 << bitsize) - 1),
  437.                 0);
  438.       if (bitpos > 0)
  439.     value = expand_shift (LSHIFT_EXPR, mode, value,
  440.                   build_int_2 (bitpos, 0), 0, 1);
  441.     }
  442.  
  443.   /* Now clear the chosen bits in OP0,
  444.      except that if VALUE is -1 we need not bother.  */
  445.  
  446.   subtarget = op0;
  447.  
  448.   if (! all_one)
  449.     subtarget = expand_bit_and (mode, op0,
  450.                 gen_rtx (CONST_INT, VOIDmode, 
  451.                      (~ (((unsigned) ~0
  452.                           >> (HOST_BITS_PER_INT - bitsize))
  453.                          << bitpos))
  454.                      & ((GET_MODE_BITSIZE (mode)
  455.                          == HOST_BITS_PER_INT)
  456.                         ? -1
  457.                         : ((1 << GET_MODE_BITSIZE (mode)) - 1))),
  458.                 subtarget);
  459.  
  460.   /* Now logical-or VALUE into OP0, unless it is zero.  */
  461.  
  462.   if (! all_zero)
  463.     subtarget = expand_binop (mode, ior_optab, subtarget, value,
  464.                   op0, 1, OPTAB_LIB_WIDEN);
  465.   if (op0 != subtarget)
  466.     emit_move_insn (op0, subtarget);
  467. }
  468.  
  469. /* Store a bit field that is split across two words.
  470.  
  471.    OP0 is the REG, SUBREG or MEM rtx for the first of the two words.
  472.    BITSIZE is the field width; BITPOS the position of its first bit
  473.    (within the word).
  474.    VALUE is the value to store.  */
  475.  
  476. static void
  477. store_split_bit_field (op0, bitsize, bitpos, value, align)
  478.      rtx op0;
  479.      int bitsize, bitpos;
  480.      rtx value;
  481.      int align;
  482. {
  483.   /* BITSIZE_1 is size of the part in the first word.  */
  484.   int bitsize_1 = BITS_PER_WORD - bitpos;
  485.   /* BITSIZE_2 is size of the rest (in the following word).  */
  486.   int bitsize_2 = bitsize - bitsize_1;
  487.   rtx part1, part2;
  488.  
  489.   /* Alignment of VALUE, after conversion.  */
  490.   int valalign = GET_MODE_SIZE (SImode);
  491.  
  492.   if (GET_MODE (value) != VOIDmode)
  493.     value = convert_to_mode (SImode, value, 1);
  494.   if (CONSTANT_P (value) && GET_CODE (value) != CONST_INT)
  495.     value = copy_to_reg (value);
  496.  
  497.   /* Split the value into two parts:
  498.      PART1 gets that which goes in the first word; PART2 the other.  */
  499. #ifdef BYTES_BIG_ENDIAN
  500.   /* PART1 gets the more significant part.  */
  501.   if (GET_CODE (value) == CONST_INT)
  502.     {
  503.       part1 = gen_rtx (CONST_INT, VOIDmode,
  504.                (unsigned) (INTVAL (value)) >> bitsize_2);
  505.       part2 = gen_rtx (CONST_INT, VOIDmode,
  506.                (unsigned) (INTVAL (value)) & ((1 << bitsize_2) - 1));
  507.     }
  508.   else
  509.     {
  510.       part1 = extract_fixed_bit_field (SImode, value, 0, bitsize_1,
  511.                        BITS_PER_WORD - bitsize, 0, 1, valalign);
  512.       part2 = extract_fixed_bit_field (SImode, value, 0, bitsize_2,
  513.                        BITS_PER_WORD - bitsize_2, 0, 1, valalign);
  514.     }
  515. #else
  516.   /* PART1 gets the less significant part.  */
  517.   if (GET_CODE (value) == CONST_INT)
  518.     {
  519.       part1 = gen_rtx (CONST_INT, VOIDmode,
  520.                (unsigned) (INTVAL (value)) & ((1 << bitsize_1) - 1));
  521.       part2 = gen_rtx (CONST_INT, VOIDmode,
  522.                (unsigned) (INTVAL (value)) >> bitsize_1);
  523.     }
  524.   else
  525.     {
  526.       part1 = extract_fixed_bit_field (SImode, value, 0, bitsize_1, 0,
  527.                        0, 1, valalign);
  528.       part2 = extract_fixed_bit_field (SImode, value, 0, bitsize_2,
  529.                        bitsize_1, 0, 1, valalign);
  530.     }
  531. #endif
  532.  
  533.   /* Store PART1 into the first word.  */
  534.   store_fixed_bit_field (op0, 0, bitsize_1, bitpos, part1, align);
  535.  
  536.   /* Offset op0 to get to the following word.  */
  537.   if (GET_CODE (op0) == MEM)
  538.     op0 = change_address (op0, SImode,
  539.               plus_constant (XEXP (op0, 0), UNITS_PER_WORD));
  540.   else if (GET_CODE (op0) == REG)
  541.     op0 = gen_rtx (SUBREG, SImode, op0, 1);
  542.   else if (GET_CODE (op0) == SUBREG)
  543.     op0 = gen_rtx (SUBREG, SImode, SUBREG_REG (op0), SUBREG_WORD (op0) + 1);
  544.  
  545.   /* Store PART2 into the second word.  */
  546.   store_fixed_bit_field (op0, 0, bitsize_2, 0, part2, align);
  547. }
  548.  
  549. /* Generate code to extract a byte-field from STR_RTX
  550.    containing BITSIZE bits, starting at BITNUM,
  551.    and put it in TARGET if possible (if TARGET is nonzero).
  552.    Regardless of TARGET, we return the rtx for where the value is placed.
  553.    It may be a QUEUED.
  554.  
  555.    STR_RTX is the structure containing the byte (a REG or MEM).
  556.    UNSIGNEDP is nonzero if this is an unsigned bit field.
  557.    MODE is the natural mode of the field value once extracted.
  558.    TMODE is the mode the caller would like the value to have;
  559.    but the value may be returned with type MODE instead.
  560.  
  561.    ALIGN is the alignment that STR_RTX is known to have, measured in bytes.
  562.  
  563.    If a TARGET is specified and we can store in it at no extra cost,
  564.    we do so, and return TARGET.
  565.    Otherwise, we return a REG of mode TMODE or MODE, with TMODE preferred
  566.    if they are equally easy.  */
  567.  
  568. rtx
  569. extract_bit_field (str_rtx, bitsize, bitnum, unsignedp,
  570.            target, mode, tmode, align)
  571.      rtx str_rtx;
  572.      register int bitsize;
  573.      int bitnum;
  574.      int unsignedp;
  575.      rtx target;
  576.      enum machine_mode mode, tmode;
  577.      int align;
  578. {
  579.   int unit = (GET_CODE (str_rtx) == MEM) ? BITS_PER_UNIT : BITS_PER_WORD;
  580.   register int offset = bitnum / unit;
  581.   register int bitpos = bitnum % unit;
  582.   register rtx op0 = str_rtx;
  583.   rtx spec_target = target;
  584.   rtx bitsize_rtx, bitpos_rtx;
  585.   rtx spec_target_subreg = 0;
  586.  
  587.   if (tmode == VOIDmode)
  588.     tmode = mode;
  589.  
  590.   while (GET_CODE (op0) == SUBREG)
  591.     {
  592.       offset += SUBREG_WORD (op0);
  593.       op0 = SUBREG_REG (op0);
  594.     }
  595.   
  596. #ifdef BYTES_BIG_ENDIAN
  597.   /* If OP0 is a register, BITPOS must count within a word.
  598.      But as we have it, it counts within whatever size OP0 now has.
  599.      On a bigendian machine, these are not the same, so convert.  */
  600.   if (GET_CODE (op0) != MEM && unit > GET_MODE_BITSIZE (GET_MODE (op0)))
  601.     bitpos += unit - GET_MODE_BITSIZE (GET_MODE (op0));
  602. #endif
  603.  
  604.   /* Extracting a full-word or multi-word value
  605.      from a structure in a register.
  606.      This can be done with just SUBREG.
  607.      So too extracting a subword value in
  608.      the least significant part of the register.  */
  609.  
  610.   if (GET_CODE (op0) == REG
  611.       && (bitsize >= BITS_PER_WORD
  612.       || ((bitsize == GET_MODE_BITSIZE (mode)
  613.            || bitsize == GET_MODE_BITSIZE (QImode)
  614.            || bitsize == GET_MODE_BITSIZE (HImode))
  615. #ifdef BYTES_BIG_ENDIAN
  616.           && bitpos + bitsize == BITS_PER_WORD
  617. #else
  618.           && bitpos == 0
  619. #endif
  620.           )))
  621.     {
  622.       enum machine_mode mode1 = mode;
  623.  
  624. #if defined( DSP96000 ) || defined( DSP56000 )
  625.       if ( mode != DFmode && mode != SFmode )
  626.       {
  627.       if (bitsize == GET_MODE_BITSIZE (QImode))
  628.           mode1 = QImode;
  629.       if (bitsize == GET_MODE_BITSIZE (HImode))
  630.           mode1 = HImode;
  631.       }
  632. #else
  633.       if (bitsize == GET_MODE_BITSIZE (QImode))
  634.     mode1 = QImode;
  635.       if (bitsize == GET_MODE_BITSIZE (HImode))
  636.     mode1 = HImode;
  637. #endif
  638.  
  639.       if (mode1 != GET_MODE (op0))
  640.     op0 = gen_rtx (SUBREG, mode1, op0, offset);
  641.  
  642.       if (mode1 != mode)
  643.     return convert_to_mode (tmode, op0, unsignedp);
  644.       return op0;
  645.     }
  646.   
  647.   /* From here on we know the desired field is smaller than a word
  648.      so we can assume it is an integer.  So we can safely extract it as one
  649.      size of integer, if necessary, and then truncate or extend
  650.      to the size that is wanted.  */
  651.  
  652.   /* OFFSET is the number of words or bytes (UNIT says which)
  653.      from STR_RTX to the first word or byte containing part of the field.  */
  654.  
  655.   if (GET_CODE (op0) == REG)
  656.     {
  657.       if (offset != 0
  658.       || GET_MODE_SIZE (GET_MODE (op0)) > GET_MODE_SIZE (SImode))
  659.     op0 = gen_rtx (SUBREG, SImode, op0, offset);
  660.       offset = 0;
  661.     }
  662.   else
  663.     {
  664.       op0 = protect_from_queue (str_rtx, 1);
  665.     }
  666.  
  667.   /* Now OFFSET is nonzero only for memory operands.  */
  668.  
  669.   if (unsignedp)
  670.     {
  671. #ifdef HAVE_extzv
  672.       if (HAVE_extzv)
  673.     {
  674.       int xbitpos = bitpos, xoffset = offset;
  675.       rtx last = get_last_insn();
  676.       rtx xop0 = op0;
  677.       rtx xtarget = target;
  678.       rtx xspec_target = spec_target;
  679.       rtx xspec_target_subreg = spec_target_subreg;
  680.       rtx pat;
  681.  
  682.       /* Get ref to first byte containing part of the field.  */
  683.       if (GET_CODE (xop0) == MEM)
  684.         {
  685.           if (! ((*insn_operand_predicate[(int) CODE_FOR_extzv][1])
  686.              (xop0, GET_MODE (xop0))))
  687.         {
  688.           enum machine_mode bestmode = VOIDmode, trymode;
  689.           int maxsize = GET_MODE_SIZE (insn_operand_mode[(int) CODE_FOR_extzv][1]);
  690.  
  691.           /* Find biggest machine mode we can safely use
  692.              to fetch from this structure.
  693.              But don't use a bigger mode than the insn wants.  */
  694.           for (trymode = QImode;
  695.                trymode && GET_MODE_SIZE (trymode) <= maxsize;
  696.                trymode = GET_MODE_WIDER_MODE (trymode))
  697.             if (GET_MODE_SIZE (trymode) <= align)
  698.               bestmode = trymode;
  699.           if (! bestmode)
  700.             abort ();
  701.           unit = GET_MODE_BITSIZE (bestmode);
  702.  
  703.           /* Compute offset as multiple of this unit,
  704.              counting in bytes.  */
  705.           xoffset = (bitnum / unit) * GET_MODE_SIZE (bestmode);
  706.           xbitpos = bitnum % unit;
  707.           xop0 = change_address (xop0, bestmode,
  708.                      plus_constant (XEXP (xop0, 0),
  709.                             xoffset));
  710.           /* Fetch it to a register in that size.  */
  711.           xop0 = force_reg (bestmode, xop0);
  712.  
  713.           /* Now ref the register in the mode extzv wants.  */
  714.           if (bestmode != insn_operand_mode[(int) CODE_FOR_extzv][1])
  715.             xop0 = gen_rtx (SUBREG, insn_operand_mode[(int) CODE_FOR_extzv][1],
  716.                     xop0, 0);
  717. #ifdef BITS_BIG_ENDIAN
  718.           if (GET_MODE_BITSIZE (GET_MODE (xop0)) > unit)
  719.             xbitpos += GET_MODE_BITSIZE (GET_MODE (xop0)) - unit;
  720. #endif
  721.         }
  722.           else
  723.         xop0 = change_address (xop0, QImode,
  724.                        plus_constant (XEXP (xop0, 0), xoffset));
  725.         }
  726.  
  727.       /* If op0 is a register, we need it in SImode
  728.          to make it acceptable to the format of extzv.  */
  729.       if (GET_CODE (xop0) == SUBREG && GET_MODE (xop0) != SImode)
  730.         abort ();
  731.       if (GET_CODE (xop0) == REG && GET_MODE (xop0) != SImode)
  732.         xop0 = gen_rtx (SUBREG, SImode, xop0, 0);
  733.  
  734.       if (xtarget == 0
  735.           || (flag_force_mem && GET_CODE (xtarget) == MEM))
  736.         xtarget = xspec_target = gen_reg_rtx (tmode);
  737.  
  738.       if (GET_MODE (xtarget) != SImode)
  739.         {
  740.           if (GET_CODE (xtarget) == REG)
  741.         xspec_target_subreg = xtarget = gen_lowpart (SImode, xtarget);
  742.           else
  743.         xtarget = gen_reg_rtx (SImode);
  744.         }
  745.  
  746.       /* If this machine's extzv insists on a register target,
  747.          make sure we have one.  */
  748.       if (! (*insn_operand_predicate[(int) CODE_FOR_extzv][0]) (xtarget, SImode))
  749.         xtarget = gen_reg_rtx (SImode);
  750.  
  751.       /* On big-endian machines, we count bits from the most significant.
  752.          If the bit field insn does not, we must invert.  */
  753. #if defined (BITS_BIG_ENDIAN) != defined (BYTES_BIG_ENDIAN)
  754.       xbitpos = unit - 1 - xbitpos;
  755. #endif
  756.  
  757.       bitsize_rtx = gen_rtx (CONST_INT, VOIDmode, bitsize);
  758.       bitpos_rtx = gen_rtx (CONST_INT, VOIDmode, xbitpos);
  759.  
  760.       pat = gen_extzv (protect_from_queue (xtarget, 1),
  761.                xop0, bitsize_rtx, bitpos_rtx);
  762.       if (pat)
  763.         {
  764.           emit_insn (pat);
  765.           target = xtarget;
  766.           spec_target = xspec_target;
  767.           spec_target_subreg = xspec_target_subreg;
  768.         }
  769.       else
  770.         {
  771.           delete_insns_since (last);
  772.           target = extract_fixed_bit_field (tmode, op0, offset, bitsize,
  773.                         bitpos, target, 1, align);
  774.         }
  775.     }
  776.       else
  777. #endif
  778.     target = extract_fixed_bit_field (tmode, op0, offset, bitsize, bitpos,
  779.                       target, 1, align);
  780.     }
  781.   else
  782.     {
  783. #ifdef HAVE_extv
  784.       if (HAVE_extv)
  785.     {
  786.       int xbitpos = bitpos, xoffset = offset;
  787.       rtx last = get_last_insn();
  788.       rtx xop0 = op0, xtarget = target;
  789.       rtx xspec_target = spec_target;
  790.       rtx xspec_target_subreg = spec_target_subreg;
  791.       rtx pat;
  792.  
  793.       /* Get ref to first byte containing part of the field.  */
  794.       if (GET_CODE (xop0) == MEM)
  795.         {
  796.           if (! ((*insn_operand_predicate[(int) CODE_FOR_extv][1])
  797.              (xop0, GET_MODE (xop0))))
  798.         {
  799.           enum machine_mode bestmode = VOIDmode, trymode;
  800.           int maxsize = GET_MODE_SIZE (insn_operand_mode[(int) CODE_FOR_extzv][1]);
  801.  
  802.           /* Find biggest machine mode we can safely use
  803.              to fetch from this structure.
  804.              But don't use a bigger mode than the insn wants.  */
  805.           for (trymode = QImode;
  806.                trymode && GET_MODE_SIZE (trymode) <= maxsize;
  807.                trymode = GET_MODE_WIDER_MODE (trymode))
  808.             if (GET_MODE_SIZE (trymode) <= align)
  809.               bestmode = trymode;
  810.           if (! bestmode)
  811.             abort ();
  812.           unit = GET_MODE_BITSIZE (bestmode);
  813.  
  814.           /* Compute offset as multiple of this unit,
  815.              counting in bytes.  */
  816.           xoffset = (bitnum / unit) * GET_MODE_SIZE (bestmode);
  817.           xbitpos = bitnum % unit;
  818.           xop0 = change_address (xop0, bestmode,
  819.                      plus_constant (XEXP (xop0, 0),
  820.                             xoffset));
  821.           /* Fetch it to a register in that size.  */
  822.           xop0 = force_reg (bestmode, xop0);
  823.  
  824.           /* Now ref the register in the mode extv wants.  */
  825.           if (bestmode != insn_operand_mode[(int) CODE_FOR_extv][1])
  826.             xop0 = gen_rtx (SUBREG, insn_operand_mode[(int) CODE_FOR_extv][1],
  827.                     xop0, 0);
  828. #ifdef BITS_BIG_ENDIAN
  829.           if (GET_MODE_BITSIZE (GET_MODE (xop0)) > unit)
  830.             xbitpos += GET_MODE_BITSIZE (GET_MODE (xop0)) - unit;
  831. #endif
  832.         }
  833.           else
  834.         xop0 = change_address (xop0, QImode,
  835.                        plus_constant (XEXP (xop0, 0), xoffset));
  836.         }
  837.  
  838.       /* If op0 is a register, we need it in SImode
  839.          to make it acceptable to the format of extv.  */
  840.       if (GET_CODE (xop0) == SUBREG && GET_MODE (xop0) != SImode)
  841.         abort ();
  842.       if (GET_CODE (xop0) == REG && GET_MODE (xop0) != SImode)
  843.         xop0 = gen_rtx (SUBREG, SImode, xop0, 0);
  844.  
  845.       if (xtarget == 0
  846.           || (flag_force_mem && GET_CODE (xtarget) == MEM))
  847.         xtarget = xspec_target = gen_reg_rtx (tmode);
  848.  
  849.       if (GET_MODE (xtarget) != SImode)
  850.         {
  851.           if (GET_CODE (xtarget) == REG)
  852.         xspec_target_subreg = xtarget = gen_lowpart (SImode, xtarget);
  853.           else
  854.         xtarget = gen_reg_rtx (SImode);
  855.         }
  856.  
  857.       /* If this machine's extv insists on a register target,
  858.          make sure we have one.  */
  859.       if (! (*insn_operand_predicate[(int) CODE_FOR_extv][0]) (xtarget, SImode))
  860.         xtarget = gen_reg_rtx (SImode);
  861.  
  862.       /* On big-endian machines, we count bits from the most significant.
  863.          If the bit field insn does not, we must invert.  */
  864. #if defined (BITS_BIG_ENDIAN) != defined (BYTES_BIG_ENDIAN)
  865.       xbitpos = unit - 1 - xbitpos;
  866. #endif
  867.  
  868.       bitsize_rtx = gen_rtx (CONST_INT, VOIDmode, bitsize);
  869.       bitpos_rtx = gen_rtx (CONST_INT, VOIDmode, xbitpos);
  870.  
  871.       pat = gen_extv (protect_from_queue (xtarget, 1),
  872.               xop0, bitsize_rtx, bitpos_rtx);
  873.       if (pat)
  874.         {
  875.           emit_insn (pat);
  876.           target = xtarget;
  877.           spec_target = xspec_target;
  878.           spec_target_subreg = xspec_target_subreg;
  879.         }
  880.       else
  881.         {
  882.           delete_insns_since (last);
  883.           target = extract_fixed_bit_field (tmode, op0, offset, bitsize,
  884.                         bitpos, target, 0, align);
  885.         }
  886.     } 
  887.       else
  888. #endif
  889.     target = extract_fixed_bit_field (tmode, op0, offset, bitsize, bitpos,
  890.                       target, 0, align);
  891.     }
  892.   if (target == spec_target)
  893.     return target;
  894.   if (target == spec_target_subreg)
  895.     return spec_target;
  896.   if (GET_MODE (target) != tmode && GET_MODE (target) != mode)
  897.     return convert_to_mode (tmode, target, unsignedp);
  898.   return target;
  899. }
  900.  
  901. /* Extract a bit field using shifts and boolean operations
  902.    Returns an rtx to represent the value.
  903.    OP0 addresses a register (word) or memory (byte).
  904.    BITPOS says which bit within the word or byte the bit field starts in.
  905.    OFFSET says how many bytes farther the bit field starts;
  906.     it is 0 if OP0 is a register.
  907.    BITSIZE says how many bits long the bit field is.
  908.     (If OP0 is a register, it may be narrower than SImode,
  909.      but BITPOS still counts within a full word,
  910.      which is significant on bigendian machines.)
  911.  
  912.    UNSIGNEDP is nonzero for an unsigned bit field (don't sign-extend value).
  913.    If TARGET is nonzero, attempts to store the value there
  914.    and return TARGET, but this is not guaranteed.
  915.    If TARGET is not used, create a pseudo-reg of mode TMODE for the value.
  916.  
  917.    ALIGN is the alignment that STR_RTX is known to have, measured in bytes.  */
  918.  
  919. static rtx
  920. extract_fixed_bit_field (tmode, op0, offset, bitsize, bitpos,
  921.              target, unsignedp, align)
  922.      enum machine_mode tmode;
  923.      register rtx op0, target;
  924.      register int offset, bitsize, bitpos;
  925.      int unsignedp;
  926.      int align;
  927. {
  928.   int total_bits = BITS_PER_WORD;
  929.   enum machine_mode mode;
  930.  
  931.   if (GET_CODE (op0) == SUBREG || GET_CODE (op0) == REG)
  932.     {
  933.       /* Special treatment for a bit field split across two registers.  */
  934.       if (bitsize + bitpos > BITS_PER_WORD)
  935.     return extract_split_bit_field (op0, bitsize, bitpos,
  936.                     unsignedp, align);
  937.     }
  938.   else if (bitsize + bitpos <= BITS_PER_UNIT
  939.        && (! SLOW_BYTE_ACCESS
  940.            || (align == 1
  941.            && BIGGEST_ALIGNMENT > 1)))
  942.     {
  943.       /* It fits in one byte, and either bytes are fast
  944.      or the alignment won't let us use anything bigger.  */
  945.       total_bits = BITS_PER_UNIT;
  946.       op0 = change_address (op0, QImode, 
  947.                 plus_constant (XEXP (op0, 0), offset));
  948.     }
  949.   else if ((bitsize + bitpos + (offset % GET_MODE_SIZE (HImode)) * BITS_PER_UNIT
  950.         <= GET_MODE_BITSIZE (HImode))
  951.        /* If halfwords are fast, use them whenever valid.  */
  952.        && (! SLOW_BYTE_ACCESS
  953.            /* Use halfwords if larger is invalid due to alignment.  */
  954.            || (align == GET_MODE_SIZE (HImode)
  955.            && BIGGEST_ALIGNMENT > GET_MODE_SIZE (HImode))))
  956.     {
  957.       /* It fits in an aligned halfword, and either halfwords are fast
  958.      or the alignment won't let us use anything bigger.  */
  959.       total_bits = GET_MODE_BITSIZE (HImode);
  960.  
  961.       /* Get ref to halfword containing the field.  */
  962.       bitpos += (offset % (total_bits / BITS_PER_UNIT)) * BITS_PER_UNIT;
  963.       offset -= (offset % (total_bits / BITS_PER_UNIT));
  964.       op0 = change_address (op0, HImode, 
  965.                 plus_constant (XEXP (op0, 0), offset));
  966.     }
  967.   else
  968.     {
  969.       /* Get ref to word containing the field.  */
  970.       /* Adjust BITPOS to be position within a word,
  971.      and OFFSET to be the offset of that word.  */
  972.       bitpos += (offset % (BITS_PER_WORD / BITS_PER_UNIT)) * BITS_PER_UNIT;
  973.       offset -= (offset % (BITS_PER_WORD / BITS_PER_UNIT));
  974.       op0 = change_address (op0, SImode,
  975.                 plus_constant (XEXP (op0, 0), offset));
  976.  
  977.       /* Special treatment for a bit field split across two words.  */
  978.       if (bitsize + bitpos > BITS_PER_WORD)
  979.     return extract_split_bit_field (op0, bitsize, bitpos,
  980.                     unsignedp, align);
  981.     }
  982.  
  983.   mode = GET_MODE (op0);
  984.  
  985. #ifdef BYTES_BIG_ENDIAN
  986.   /* BITPOS is the distance between our msb and that of OP0.
  987.      Convert it to the distance from the lsb.  */
  988.  
  989.   bitpos = total_bits - bitsize - bitpos;
  990. #endif
  991.   /* Now BITPOS is always the distance between the field's lsb and that of OP0.
  992.      We have reduced the big-endian case to the little-endian case.  */
  993.  
  994.   if (unsignedp)
  995.     {
  996.       if (bitpos)
  997.     {
  998.       /* If the field does not already start at the lsb,
  999.          shift it so it does.  */
  1000.       tree amount = build_int_2 (bitpos, 0);
  1001.       /* Maybe propagate the target for the shift.  */
  1002.       /* But not if we will return it--could confuse integrate.c.  */
  1003.       rtx subtarget = (target != 0 && GET_CODE (target) == REG
  1004.                && !REG_FUNCTION_VALUE_P (target)
  1005.                ? target : 0);
  1006.       if (tmode != mode) subtarget = 0;
  1007.       op0 = expand_shift (RSHIFT_EXPR, mode, op0, amount, subtarget, 1);
  1008.     }
  1009.       /* Convert the value to the desired mode.  */
  1010.       if (mode != tmode)
  1011.     op0 = convert_to_mode (tmode, op0, 1);
  1012.  
  1013.       /* Unless the msb of the field used to be the msb when we shifted,
  1014.      mask out the upper bits.  */
  1015.  
  1016.       if ((GET_MODE_BITSIZE (mode) != bitpos + bitsize
  1017. #if 0
  1018. #ifdef SLOW_ZERO_EXTEND
  1019.        /* Always generate an `and' if
  1020.           we just zero-extended op0 and SLOW_ZERO_EXTEND, since it
  1021.           will combine fruitfully with the zero-extend. */
  1022.        || tmode != mode
  1023. #endif
  1024. #endif
  1025.        )
  1026.       && bitsize < HOST_BITS_PER_INT)
  1027.     return expand_bit_and (GET_MODE (op0), op0,
  1028.                    gen_rtx (CONST_INT, VOIDmode, (1 << bitsize) - 1),
  1029.                    target);
  1030.       return op0;
  1031.     }
  1032.  
  1033.   /* To extract a signed bit-field, first shift its msb to the msb of the word,
  1034.      then arithmetic-shift its lsb to the lsb of the word.  */
  1035.   op0 = force_reg (mode, op0);
  1036.   if (mode != tmode)
  1037.     target = 0;
  1038.   if (GET_MODE_BITSIZE (QImode) < GET_MODE_BITSIZE (mode)
  1039.       && GET_MODE_BITSIZE (QImode) >= bitsize + bitpos)
  1040.     mode = QImode, op0 = convert_to_mode (QImode, op0, 0);
  1041.   if (GET_MODE_BITSIZE (HImode) < GET_MODE_BITSIZE (mode)
  1042.       && GET_MODE_BITSIZE (HImode) >= bitsize + bitpos)
  1043.     mode = HImode, op0 = convert_to_mode (HImode, op0, 0);
  1044.   if (GET_MODE_BITSIZE (mode) != (bitsize + bitpos))
  1045.     {
  1046.       tree amount = build_int_2 (GET_MODE_BITSIZE (mode) - (bitsize + bitpos), 0);
  1047.       /* Maybe propagate the target for the shift.  */
  1048.       /* But not if we will return the result--could confuse integrate.c.  */
  1049.       rtx subtarget = (target != 0 && GET_CODE (target) == REG
  1050.                && ! REG_FUNCTION_VALUE_P (target)
  1051.                ? target : 0);
  1052.       op0 = expand_shift (LSHIFT_EXPR, mode, op0, amount, subtarget, 1);
  1053.     }
  1054.  
  1055.   return expand_shift (RSHIFT_EXPR, mode, op0,
  1056.                build_int_2 (GET_MODE_BITSIZE (mode) - bitsize, 0), 
  1057.                target, 0);
  1058. }
  1059.  
  1060. /* Extract a bit field that is split across two words
  1061.    and return an RTX for the result.
  1062.  
  1063.    OP0 is the REG, SUBREG or MEM rtx for the first of the two words.
  1064.    BITSIZE is the field width; BITPOS, position of its first bit, in the word.
  1065.    UNSIGNEDP is 1 if should zero-extend the contents; else sign-extend.  */
  1066.  
  1067. static rtx
  1068. extract_split_bit_field (op0, bitsize, bitpos, unsignedp, align)
  1069.      rtx op0;
  1070.      int bitsize, bitpos, unsignedp, align;
  1071. {
  1072.   /* BITSIZE_1 is size of the part in the first word.  */
  1073.   int bitsize_1 = BITS_PER_WORD - bitpos;
  1074.   /* BITSIZE_2 is size of the rest (in the following word).  */
  1075.   int bitsize_2 = bitsize - bitsize_1;
  1076.   rtx part1, part2, result;
  1077.  
  1078.   /* Get the part of the bit field from the first word.  */
  1079.   part1 = extract_fixed_bit_field (SImode, op0, 0, bitsize_1, bitpos,
  1080.                    0, 1, align);
  1081.  
  1082.   /* Offset op0 by 1 word to get to the following one.  */
  1083.   if (GET_CODE (op0) == MEM)
  1084.     op0 = change_address (op0, SImode,
  1085.               plus_constant (XEXP (op0, 0), UNITS_PER_WORD));
  1086.   else if (GET_CODE (op0) == REG)
  1087.     op0 = gen_rtx (SUBREG, SImode, op0, 1);
  1088.   else
  1089.     op0 = gen_rtx (SUBREG, SImode, SUBREG_REG (op0), SUBREG_WORD (op0) + 1);
  1090.  
  1091.   /* Get the part of the bit field from the second word.  */
  1092.   part2 = extract_fixed_bit_field (SImode, op0, 0, bitsize_2, 0, 0, 1, align);
  1093.  
  1094.   /* Shift the more significant part up to fit above the other part.  */
  1095. #ifdef BYTES_BIG_ENDIAN
  1096.   part1 = expand_shift (LSHIFT_EXPR, SImode, part1,
  1097.             build_int_2 (bitsize_2, 0), 0, 1);
  1098. #else
  1099.   part2 = expand_shift (LSHIFT_EXPR, SImode, part2,
  1100.             build_int_2 (bitsize_1, 0), 0, 1);
  1101. #endif
  1102.  
  1103.   /* Combine the two parts with bitwise or.  This works
  1104.      because we extracted both parts as unsigned bit fields.  */
  1105.   result = expand_binop (SImode, ior_optab, part1, part2, 0, 1,
  1106.              OPTAB_LIB_WIDEN);
  1107.  
  1108.   /* Unsigned bit field: we are done.  */
  1109.   if (unsignedp)
  1110.     return result;
  1111.   /* Signed bit field: sign-extend with two arithmetic shifts.  */
  1112.   result = expand_shift (LSHIFT_EXPR, SImode, result,
  1113.              build_int_2 (BITS_PER_WORD - bitsize, 0), 0, 0);
  1114.   return expand_shift (RSHIFT_EXPR, SImode, result,
  1115.                build_int_2 (BITS_PER_WORD - bitsize, 0), 0, 0);
  1116. }
  1117.  
  1118. /* Add INC into TARGET.  */
  1119.  
  1120. void
  1121. expand_inc (target, inc)
  1122.      rtx target, inc;
  1123. {
  1124.   rtx value = expand_binop (GET_MODE (target), add_optab,
  1125.                 target, inc,
  1126.                 target, 0, OPTAB_LIB_WIDEN);
  1127.   if (value != target)
  1128.     emit_move_insn (target, value);
  1129. }
  1130.  
  1131. /* Subtract INC from TARGET.  */
  1132.  
  1133. void
  1134. expand_dec (target, dec)
  1135.      rtx target, dec;
  1136. {
  1137.   rtx value = expand_binop (GET_MODE (target), sub_optab,
  1138.                 target, dec,
  1139.                 target, 0, OPTAB_LIB_WIDEN);
  1140.   if (value != target)
  1141.     emit_move_insn (target, value);
  1142. }
  1143.  
  1144. /* Output a shift instruction for expression code CODE,
  1145.    with SHIFTED being the rtx for the value to shift,
  1146.    and AMOUNT the tree for the amount to shift by.
  1147.    Store the result in the rtx TARGET, if that is convenient.
  1148.    If UNSIGNEDP is nonzero, do a logical shift; otherwise, arithmetic.
  1149.    Return the rtx for where the value is.  */
  1150.  
  1151. /* Pastel, for shifts, converts shift count to SImode here
  1152.    independent of the mode being shifted.
  1153.    Should that be done in an earlier pass?
  1154.    It turns out not to matter for C.  */
  1155.  
  1156. rtx
  1157. expand_shift (code, mode, shifted, amount, target, unsignedp)
  1158.      enum tree_code code;
  1159.      register enum machine_mode mode;
  1160.      rtx shifted;
  1161.      tree amount;
  1162.      register rtx target;
  1163.      int unsignedp;
  1164. {
  1165.   register rtx op1, temp = 0;
  1166.   register int left = (code == LSHIFT_EXPR || code == LROTATE_EXPR);
  1167.   int try;
  1168.   int rotate = code == LROTATE_EXPR || code == RROTATE_EXPR;
  1169.   rtx last;
  1170.  
  1171.   /* Previously detected shift-counts computed by NEGATE_EXPR
  1172.      and shifted in the other direction; but that does not work
  1173.      on all machines.  */
  1174.  
  1175.   op1 = expand_expr (amount, 0, VOIDmode, 0);
  1176.  
  1177.   last = get_last_insn ();
  1178.  
  1179.   for (try = 0; temp == 0 && try < 3; try++)
  1180.     {
  1181.       enum optab_methods methods;
  1182.       delete_insns_since (last);
  1183.  
  1184.       if (try == 0)
  1185.     methods = OPTAB_DIRECT;
  1186.       else if (try == 1)
  1187.     methods = OPTAB_WIDEN;
  1188.       else
  1189.     methods = OPTAB_LIB_WIDEN;
  1190.  
  1191.       if (rotate)
  1192.     {
  1193.       /* Widening does not work for rotation.  */
  1194.       if (methods != OPTAB_DIRECT)
  1195.         methods = OPTAB_LIB;
  1196.  
  1197.       temp = expand_binop (mode,
  1198.                    left ? rotl_optab : rotr_optab,
  1199.                    shifted, op1, target, -1, methods);
  1200.     }
  1201.       else if (unsignedp)
  1202.     {
  1203.       temp = expand_binop (mode,
  1204.                    left ? lshl_optab : lshr_optab,
  1205.                    shifted, op1, target, unsignedp, methods);
  1206.       if (temp == 0 && left)
  1207.         temp = expand_binop (mode, ashl_optab,
  1208.                  shifted, op1, target, unsignedp, methods);
  1209.       if (temp != 0)
  1210.         return temp;
  1211.     }
  1212.       /* Do arithmetic shifts.
  1213.      Also, if we are going to widen the operand, we can just as well
  1214.      use an arithmetic right-shift instead of a logical one.  */
  1215.       if (! rotate && (! unsignedp || (! left && methods == OPTAB_WIDEN)))
  1216.     {
  1217.       enum optab_methods methods1 = methods;
  1218.  
  1219.       /* If trying to widen a log shift to an arithmetic shift,
  1220.          don't accept an arithmetic shift of the same size.  */
  1221.       if (unsignedp)
  1222.         methods1 = OPTAB_MUST_WIDEN;
  1223.  
  1224.       /* Arithmetic shift */
  1225.  
  1226.       temp = expand_binop (mode,
  1227.                    left ? ashl_optab : ashr_optab,
  1228.                    shifted, op1, target, unsignedp, methods1);
  1229.       if (temp != 0)
  1230.         return temp;
  1231.     }
  1232.  
  1233.       if (unsignedp)
  1234.     {
  1235.       /* No logical shift insn in either direction =>
  1236.          try a bit-field extract instruction if we have one.  */
  1237. #ifdef HAVE_extzv
  1238. #ifndef BITS_BIG_ENDIAN
  1239.       if (HAVE_extzv && !left
  1240.           && ((methods == OPTAB_DIRECT && mode == SImode)
  1241.           || (methods == OPTAB_WIDEN
  1242.               && GET_MODE_SIZE (mode) < GET_MODE_SIZE (SImode))))
  1243.         {
  1244.           rtx shifted1 = convert_to_mode (SImode, shifted, 1);
  1245.           rtx target1 = target;
  1246.  
  1247.           /* If -fforce-mem, don't let the operand be in memory.  */
  1248.           if (flag_force_mem && GET_CODE (shifted1) == MEM)
  1249.         shifted1 = force_not_mem (shifted1);
  1250.  
  1251.           /* If this machine's extzv insists on a register for
  1252.          operand 1, arrange for that.  */
  1253.           if (! ((*insn_operand_predicate[(int) CODE_FOR_extzv][1])
  1254.              (shifted1, SImode)))
  1255.         shifted1 = force_reg (SImode, shifted1);
  1256.  
  1257.           /* If we don't have or cannot use a suggested target,
  1258.          make a place for the result, in the proper mode.  */
  1259.           if (methods == OPTAB_WIDEN || target1 == 0
  1260.           || ! ((*insn_operand_predicate[(int) CODE_FOR_extzv][0])
  1261.             (target1, SImode)))
  1262.         target1 = gen_reg_rtx (SImode);
  1263.  
  1264.           op1 = convert_to_mode (SImode, op1, 0);
  1265.  
  1266.           /* If this machine's extzv insists on a register for
  1267.          operand 3, arrange for that.  */
  1268.           if (! ((*insn_operand_predicate[(int) CODE_FOR_extzv][3])
  1269.              (op1, SImode)))
  1270.         op1 = force_reg (SImode, op1);
  1271.  
  1272.           op1 = protect_from_queue (op1, 1);
  1273.  
  1274.           /* TEMP gets the width of the bit field to extract:
  1275.          wordsize minus # bits to shift by.  */
  1276.           if (GET_CODE (op1) == CONST_INT)
  1277.         temp = gen_rtx (CONST_INT, VOIDmode,
  1278.                 (GET_MODE_BITSIZE (mode) - INTVAL (op1)));
  1279.           else
  1280.         temp = expand_binop (SImode, sub_optab,
  1281.                      gen_rtx (CONST_INT, VOIDmode,
  1282.                           GET_MODE_BITSIZE (mode)),
  1283.                      op1, gen_reg_rtx (SImode),
  1284.                      0, OPTAB_LIB_WIDEN);
  1285.           /* Now extract with width TEMP, omitting OP1 least sig bits.  */
  1286.           emit_insn (gen_extzv (protect_from_queue (target1, 1),
  1287.                     protect_from_queue (shifted1, 0),
  1288.                     temp, op1));
  1289.           return convert_to_mode (mode, target1, 1);
  1290.         }
  1291.       /* Can also do logical shift with signed bit-field extract
  1292.          followed by inserting the bit-field at a different position.
  1293.          That strategy is not yet implemented.  */
  1294. #endif /* not BITS_BIG_ENDIAN */
  1295. #endif /* HAVE_extzv */
  1296.       /* We have failed to generate the logical shift and will abort.  */
  1297.     }
  1298.     }
  1299.   if (temp == 0)
  1300.     abort ();
  1301.   return temp;
  1302. }
  1303.  
  1304. /* Output an instruction or two to bitwise-and OP0 with OP1
  1305.    in mode MODE, with output to TARGET if convenient and TARGET is not zero.
  1306.    Returns where the result is.  */
  1307. /* This function used to do more; now it could be eliminated.  */
  1308.  
  1309. rtx
  1310. expand_bit_and (mode, op0, op1, target)
  1311.      enum machine_mode mode;
  1312.      rtx op0, op1, target;
  1313. {
  1314.   register rtx temp;
  1315.  
  1316.   /* First try to open-code it directly.  */
  1317.   temp = expand_binop (mode, and_optab, op0, op1, target, 1, OPTAB_LIB_WIDEN);
  1318.   if (temp == 0)
  1319.     abort ();
  1320.   return temp;
  1321. }
  1322.  
  1323. /* Perform a multiplication and return an rtx for the result.
  1324.    MODE is mode of value; OP0 and OP1 are what to multiply (rtx's);
  1325.    TARGET is a suggestion for where to store the result (an rtx).
  1326.  
  1327.    We check specially for a constant integer as OP1.
  1328.    If you want this check for OP0 as well, then before calling
  1329.    you should swap the two operands if OP0 would be constant.  */
  1330.  
  1331. rtx
  1332. expand_mult (mode, op0, op1, target, unsignedp)
  1333.      enum machine_mode mode;
  1334.      register rtx op0, op1, target;
  1335.      int unsignedp;
  1336. {
  1337.   /* Don't use the function value register as a target
  1338.      since we have to read it as well as write it,
  1339.      and function-inlining gets confused by this.  */
  1340.   if (target && REG_P (target) && REG_FUNCTION_VALUE_P (target))
  1341.     target = 0;
  1342.  
  1343. #if ! defined( DSP56000 ) && ! defined( DSP96000 )
  1344.   if (GET_CODE (op1) == CONST_INT)
  1345.     {
  1346.       register int foo;
  1347.       int bar;
  1348.       int negate = INTVAL (op1) < 0;
  1349.       int absval = INTVAL (op1) * (negate ? -1 : 1);
  1350.  
  1351.       /* Is multiplier a power of 2, or minus that?  */
  1352.       foo = exact_log2 (absval);
  1353.       if (foo >= 0)
  1354.     {
  1355.       rtx tem;
  1356.       if (foo == 0)
  1357.         tem = op0;
  1358.       else
  1359.         tem = expand_shift (LSHIFT_EXPR, mode, op0,
  1360.                 build_int_2 (foo, 0),
  1361.                 target, 0);
  1362.       return (negate
  1363.           ? expand_unop (mode, neg_optab, tem, target, 0)
  1364.           : tem);
  1365.     }
  1366.       /* Is multiplier a sum of two powers of 2, or minus that?  */
  1367.       bar = floor_log2 (absval);
  1368.       foo = exact_log2 (absval - (1 << bar));
  1369.       if (bar >= 0 && foo >= 0)
  1370.     {
  1371.       rtx tem =
  1372.         force_operand (gen_rtx (PLUS, mode,
  1373.                     expand_shift (LSHIFT_EXPR, mode, op0,
  1374.                              build_int_2 (bar - foo, 0),
  1375.                              0, 0),
  1376.                     op0),
  1377.                ((foo == 0 && ! negate) ? target : 0));
  1378.  
  1379.       if (foo != 0)
  1380.         tem = expand_shift (LSHIFT_EXPR, mode, tem,
  1381.                 build_int_2 (foo, 0),
  1382.                 negate ? 0 : target, 0);
  1383.  
  1384.       return negate ? expand_unop (mode, neg_optab, tem, target, 0) : tem;
  1385.     }
  1386.     }
  1387. #endif
  1388.   /* This used to use umul_optab if unsigned,
  1389.      but I think that for non-widening multiply there is no difference
  1390.      between signed and unsigned.  */
  1391.   op0 = expand_binop (mode, smul_optab,
  1392.               op0, op1, target, unsignedp, OPTAB_LIB_WIDEN);
  1393.   if (op0 == 0)
  1394.     abort ();
  1395.   return op0;
  1396. }
  1397.  
  1398. /* Emit the code to divide OP0 by OP1, putting the result in TARGET
  1399.    if that is convenient, and returning where the result is.
  1400.    You may request either the quotient or the remainder as the result;
  1401.    specify REM_FLAG nonzero to get the remainder.
  1402.  
  1403.    CODE is the expression code for which kind of division this is;
  1404.    it controls how rounding is done.  MODE is the machine mode to use.
  1405.    UNSIGNEDP nonzero means do unsigned division.  */
  1406.  
  1407. /* ??? For CEIL_MOD_EXPR, can compute incorrect remainder with ANDI
  1408.    and then correct it by or'ing in missing high bits
  1409.    if result of ANDI is nonzero.
  1410.    For ROUND_MOD_EXPR, can use ANDI and then sign-extend the result.
  1411.    This could optimize to a bfexts instruction.
  1412.    But C doesn't use these operations, so their optimizations are
  1413.    left for later.  */
  1414.  
  1415. rtx
  1416. expand_divmod (rem_flag, code, mode, op0, op1, target, unsignedp)
  1417.      int rem_flag;
  1418.      enum tree_code code;
  1419.      enum machine_mode mode;
  1420.      register rtx op0, op1, target;
  1421.      int unsignedp;
  1422. {
  1423.   register rtx temp;
  1424.   int log = -1;
  1425.   int can_clobber_op0;
  1426.   int mod_insn_no_good = 0;
  1427.   rtx adjusted_op0 = op0;
  1428.  
  1429.   /* Don't use the function value register as a target
  1430.      since we have to read it as well as write it,
  1431.      and function-inlining gets confused by this.  */
  1432.   if (target && REG_P (target) && REG_FUNCTION_VALUE_P (target))
  1433.     target = 0;
  1434.  
  1435.   /* Don't clobber an operand while doing a multi-step calculation.  */
  1436.   if (target)
  1437.     if ((rem_flag && (reg_mentioned_p (target, op0)
  1438.               || (GET_CODE (op0) == MEM && GET_CODE (target) == MEM)))
  1439.     || reg_mentioned_p (target, op1)
  1440.     || (GET_CODE (op1) == MEM && GET_CODE (target) == MEM))
  1441.       target = 0;
  1442.  
  1443.   if (target == 0)
  1444.     target = gen_reg_rtx (mode);
  1445.  
  1446.   can_clobber_op0 = (GET_CODE (op0) == REG && op0 == target);
  1447.  
  1448.   if (GET_CODE (op1) == CONST_INT)
  1449.     log = exact_log2 (INTVAL (op1));
  1450.  
  1451.   /* If log is >= 0, we are dividing by 2**log, and will do it by shifting,
  1452.      which is really floor-division.  Otherwise we will really do a divide,
  1453.      and we assume that is trunc-division.
  1454.  
  1455.      We must correct the dividend by adding or subtracting something
  1456.      based on the divisor, in order to do the kind of rounding specified
  1457.      by CODE.  The correction depends on what kind of rounding is actually
  1458.      available, and that depends on whether we will shift or divide.  */
  1459.  
  1460.   switch (code)
  1461.     {
  1462.     case TRUNC_MOD_EXPR:
  1463.     case TRUNC_DIV_EXPR:
  1464.       if (log >= 0 && ! unsignedp)
  1465.     {
  1466.       rtx label = gen_label_rtx ();
  1467.       if (! can_clobber_op0)
  1468.         adjusted_op0 = copy_to_suggested_reg (adjusted_op0, target);
  1469.       emit_cmp_insn (adjusted_op0, const0_rtx, 0, 0, 0);
  1470.       emit_jump_insn (gen_bge (label));
  1471.       expand_inc (adjusted_op0, plus_constant (op1, -1));
  1472.       emit_label (label);
  1473.       mod_insn_no_good = 1;
  1474.     }
  1475.       break;
  1476.  
  1477.     case FLOOR_DIV_EXPR:
  1478.     case FLOOR_MOD_EXPR:
  1479.       if (log < 0 && ! unsignedp)
  1480.     {
  1481.       rtx label = gen_label_rtx ();
  1482.       if (! can_clobber_op0)
  1483.         adjusted_op0 = copy_to_suggested_reg (adjusted_op0, target);
  1484.       emit_cmp_insn (adjusted_op0, const0_rtx, 0, 0, 0);
  1485.       emit_jump_insn (gen_bge (label));
  1486.       expand_dec (adjusted_op0, op1);
  1487.       expand_inc (adjusted_op0, const1_rtx);
  1488.       emit_label (label);
  1489.       mod_insn_no_good = 1;
  1490.     }
  1491.       break;
  1492.  
  1493.     case CEIL_DIV_EXPR:
  1494.     case CEIL_MOD_EXPR:
  1495.       if (! can_clobber_op0)
  1496.     adjusted_op0 = copy_to_suggested_reg (adjusted_op0, target);
  1497.       if (log < 0)
  1498.     {
  1499.       rtx label = 0;
  1500.       if (! unsignedp)
  1501.         {
  1502.           label = gen_label_rtx ();
  1503.           emit_cmp_insn (adjusted_op0, const0_rtx, 0, 0, 0);
  1504.           emit_jump_insn (gen_ble (label));
  1505.         }
  1506.       expand_inc (adjusted_op0, op1);
  1507.       expand_dec (adjusted_op0, const1_rtx);
  1508.       if (! unsignedp)
  1509.         emit_label (label);
  1510.     }
  1511.       else
  1512.     {
  1513.       adjusted_op0 = expand_binop (GET_MODE (target), add_optab,
  1514.                        adjusted_op0, plus_constant (op1, -1),
  1515.                        0, 0, OPTAB_LIB_WIDEN);
  1516.     }
  1517.       mod_insn_no_good = 1;
  1518.       break;
  1519.  
  1520.     case ROUND_DIV_EXPR:
  1521.     case ROUND_MOD_EXPR:
  1522.       if (! can_clobber_op0)
  1523.     adjusted_op0 = copy_to_suggested_reg (adjusted_op0, target);
  1524.       if (log < 0)
  1525.     {
  1526.       op1 = expand_shift (RSHIFT_EXPR, mode, op1, integer_one_node, 0, 0);
  1527.       if (! unsignedp)
  1528.         {
  1529.           rtx label = gen_label_rtx ();
  1530.           emit_cmp_insn (adjusted_op0, const0_rtx, 0, 0, 0);
  1531.           emit_jump_insn (gen_bge (label));
  1532.           expand_unop (mode, neg_optab, op1, op1, 0);
  1533.           emit_label (label);
  1534.         }
  1535.       expand_inc (adjusted_op0, op1);
  1536.     }
  1537.       else
  1538.     {
  1539.       op1 = gen_rtx (CONST_INT, VOIDmode, INTVAL (op1) / 2);
  1540.       expand_inc (adjusted_op0, op1);
  1541.     }
  1542.       mod_insn_no_good = 1;
  1543.       break;
  1544.     }
  1545.  
  1546.   if (rem_flag && !mod_insn_no_good)
  1547.     {
  1548.       /* Try to produce the remainder directly */
  1549.       if (log >= 0)
  1550.     {
  1551.       return expand_bit_and (mode, adjusted_op0,
  1552.                  gen_rtx (CONST_INT, VOIDmode,
  1553.                       INTVAL (op1) - 1),
  1554.                  target);
  1555.     }
  1556.       else
  1557.     {
  1558.       /* See if we can do remainder without a library call.  */
  1559.       temp = sign_expand_binop (mode, umod_optab, smod_optab,
  1560.                     adjusted_op0, op1, target,
  1561.                     unsignedp, OPTAB_WIDEN);
  1562.       if (temp != 0)
  1563.         return temp;
  1564.       /* No luck there.
  1565.          Can we do remainder and divide at once without a library call?  */
  1566.       temp = gen_reg_rtx (mode);
  1567.       if (expand_twoval_binop (unsignedp ? udivmod_optab : sdivmod_optab,
  1568.                    adjusted_op0, op1,
  1569.                    0, temp, unsignedp))
  1570.         return temp;
  1571.       temp = 0;
  1572.     }
  1573.     }
  1574.  
  1575.   /* Produce the quotient.  */
  1576.   if (log >= 0)
  1577.     temp = expand_shift (RSHIFT_EXPR, mode, adjusted_op0,
  1578.              build_int_2 (exact_log2 (INTVAL (op1)), 0),
  1579.              target, unsignedp);
  1580.   else if (rem_flag && !mod_insn_no_good)
  1581.     /* If producing quotient in order to subtract for remainder,
  1582.        and a remainder subroutine would be ok,
  1583.        don't use a divide subroutine.  */
  1584.     temp = sign_expand_binop (mode, udiv_optab, sdiv_optab,
  1585.                   adjusted_op0, op1, target,
  1586.                   unsignedp, OPTAB_WIDEN);
  1587.   else
  1588.     temp = sign_expand_binop (mode, udiv_optab, sdiv_optab,
  1589.                   adjusted_op0, op1, target,
  1590.                   unsignedp, OPTAB_LIB_WIDEN);
  1591.  
  1592.   /* If we really want the remainder, get it by subtraction.  */
  1593.   if (rem_flag)
  1594.     {
  1595.       if (temp == 0)
  1596.     {
  1597.       /* No divide instruction either.  Use library for remainder.  */
  1598.       temp = sign_expand_binop (mode, umod_optab, smod_optab,
  1599.                     op0, op1, target,
  1600.                     unsignedp, OPTAB_LIB_WIDEN);
  1601.     }
  1602.       else
  1603.     {
  1604.       /* We divided.  Now finish doing X - Y * (X / Y).  */
  1605.       temp = expand_mult (mode, temp, op1, temp, unsignedp);
  1606.       if (! temp) abort ();
  1607.       temp = expand_binop (mode, sub_optab, op0,
  1608.                    temp, target, unsignedp, OPTAB_LIB_WIDEN);
  1609.     }
  1610.     }
  1611.  
  1612.   if (temp == 0)
  1613.     abort ();
  1614.   return temp;
  1615. }
  1616.  
  1617. /* Return a tree node with data type TYPE, describing the value of X.
  1618.    Usually this is an RTL_EXPR, if there is no obvious better choice.  */
  1619.  
  1620. static tree
  1621. make_tree (type, x)
  1622.      tree type;
  1623.      rtx x;
  1624. {
  1625.   tree t;
  1626.   switch (GET_CODE (x))
  1627.     {
  1628.     case CONST_INT:
  1629.       t = build_int_2 (INTVAL (x), 0);
  1630.       TREE_TYPE (t) = type;
  1631.       return fold (t);
  1632.  
  1633.     default:
  1634.       t = make_node (RTL_EXPR);
  1635.       TREE_TYPE (t) = type;
  1636.       RTL_EXPR_RTL (t) = x;
  1637.       /* There are no insns to be output
  1638.      when this rtl_expr is used.  */
  1639.       RTL_EXPR_SEQUENCE (t) = 0;
  1640.       return t;
  1641.     }
  1642. }
  1643.  
  1644. /* Return an rtx representing the value of X * MULT + ADD.
  1645.    MODE is the machine mode for the computation.
  1646.    UNSIGNEDP is non-zero to do unsigned multiplication.
  1647.    This may emit insns.  */
  1648.  
  1649. #if defined( DSP56000 ) || defined( DSP96000 )
  1650. /* we change this to facilitate the use of incs and decs. this function
  1651.    is only called by emit_iv_init_code in loop.c. it is trying to compute
  1652.    a value into a target register. the problem is that the GNU version of
  1653.    this function does not take advantage of the target parameter of 
  1654.    expand_expr, and this sometimes causes an extra copy to be emitted. */
  1655.  
  1656. rtx
  1657. expand_mult_add (x, mult, add, mode, unsignedp, target)
  1658.      rtx x, mult, add, target;
  1659.      enum machine_mode mode;
  1660.      int unsignedp;
  1661. {
  1662.   tree type = type_for_size (GET_MODE_BITSIZE (mode), unsignedp);
  1663.   tree prod = fold (build (MULT_EXPR, type, make_tree (type, x),
  1664.                make_tree (type, mult)));
  1665.   tree sum = fold (build (PLUS_EXPR, type, prod, make_tree (type, add)));
  1666.   return expand_expr (sum, target, VOIDmode, 0);
  1667. }
  1668. #else
  1669. rtx
  1670. expand_mult_add (x, mult, add, mode, unsignedp)
  1671.      rtx x, mult, add;
  1672.      enum machine_mode mode;
  1673.      int unsignedp;
  1674. {
  1675.   tree type = type_for_size (GET_MODE_BITSIZE (mode), unsignedp);
  1676.   tree prod = fold (build (MULT_EXPR, type, make_tree (type, x),
  1677.                make_tree (type, mult)));
  1678.   tree sum = fold (build (PLUS_EXPR, type, prod, make_tree (type, add)));
  1679.   return expand_expr (sum, 0, VOIDmode, 0);
  1680. }
  1681. #endif
  1682.